Textual Elements
Creating a Text Input
a:TextInput({
Title = 'TextInput', -- Set Tile
MaxSize = 100, -- Set MaxSize (Optional)
PlaceHolder = 'Your Token...', -- Set PlaceHolderText (Optional)
CallBack = function(v)
print(v)
end,
})
Creating a Paragraph
local Paragraph = a:Paragraph({
Title = "Paragraph", -- Title of the Paragraph
Content = 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ips' -- Paragraph Content
})
Paragraph:Set('This is a new Paragraph Title', 'This is a new Content Text')
Creating a Label
local Label = a:Label('Label', 'Left') -- Set Text, Set Position [ Right, Left, Center ]
Label:Set('This is a new label Text')
Creating a Section
a:Section('Section', '8932620770') -- Set Section Title and Icon (Optional)